home *** CD-ROM | disk | FTP | other *** search
/ The Sunday Times: The Month 2004 August / The Sunday Times - The Month 2004-08.iso / pc / engine / shell / shell.swf / scripts / DefineButton2_30 / BUTTONCONDACTION on(press).as next >
Encoding:
Text File  |  2004-07-06  |  229 b   |  13 lines

  1. on(press){
  2.    this.startDrag(false,4,0,_parent.DRAG_WIDTH,0);
  3.    lastX = _X;
  4.    this.onEnterFrame = function()
  5.    {
  6.       if(lastX != _X)
  7.       {
  8.          _parent.onKnobMoved(_X);
  9.          lastX = _X;
  10.       }
  11.    };
  12. }
  13.